diff options
| author | real-zephex <[email protected]> | 2024-03-31 17:32:48 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-31 17:32:48 +0530 |
| commit | d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3 (patch) | |
| tree | f91c136407e3a41d115750e9ae895727c5ddf9cc /src/app/anime/[id]/[animeId] | |
| parent | fix: looks like image proxy is must for viewing manga pages. we will have to... (diff) | |
| download | dramalama-d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3.tar.xz dramalama-d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3.zip | |
fixes: minor css modifications, added basic information about the last read manga chapter (don't expect much out of it)
Diffstat (limited to 'src/app/anime/[id]/[animeId]')
| -rw-r--r-- | src/app/anime/[id]/[animeId]/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/anime/[id]/[animeId]/page.jsx b/src/app/anime/[id]/[animeId]/page.jsx index d59b0a0..1614775 100644 --- a/src/app/anime/[id]/[animeId]/page.jsx +++ b/src/app/anime/[id]/[animeId]/page.jsx @@ -49,7 +49,7 @@ export default async function Video({ params }) { async function getVideoLink(id) { const res = await fetch( "https://consumet-api-di2e.onrender.com/anime/gogoanime/watch/" + id, - { next: { revalidate: 3600 } } // Video links are revalidated after an hour + { next: { revalidate: 7200 } } // Video links are revalidated after an hour ); const data = res.json(); return data; |